home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / myclearstatuspane.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  757 b   |  22 lines

  1. #include "bbs.h"
  2.  
  3. void MyClearStatusPane(void)
  4. {
  5.  StatPrint("\14  ");    /* clear screen and text bold */
  6.  
  7.  StatCursorTo(1,1);
  8.  StatPrint("NAME                           |PASSWORD|  1|255|XXXXXXXXX|800-555-1212|     |");
  9.  
  10.  StatCursorTo(1,2);
  11.  StatPrint("LOCATION                       | 0| 0|     0|     0|           0|           0|");
  12.  
  13.  StatCursorTo(1,3);
  14.  StatPrint("TIME                           |       0|    0|LAST CALLED                   |");
  15.  
  16.  StatPrint("");     /* and set text to normal */
  17.  StatParkCursor();
  18.  
  19.  sprintf(GSTR3,"%5d",Online_BaudR);
  20.  StatMessage(73,1,GSTR3);
  21. }
  22.